home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 5
/
CD-ROM Today - The Disc (Issue 5)(November 1994).ISO
/
mac
/
Mac shareware
/
Education
/
RLaB
/
examples
/
fun_plot.r
< prev
next >
Wrap
Text File
|
1994-09-21
|
337b
|
17 lines
// Example plot
x = (0:10:.05)';
y = x.^2;
pstart ();
plfont(2); // Roman font
plwid(2); // line width
ptitle ("#frJust For Fun, #fiJust For Fun, #fsJust For Fun");
xlabel ("#ga"); // this is alpha
ylabel ("#gb=#ga#u2#d"); // alpha = beta^2
plot ([x,y]);
//send Postscript output to file fun.ps
//plprint ("fun.ps");